From 519eda29b5e4cf4a50eaaa3f14e839da1be62c84 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Fri, 30 Jun 2017 17:03:34 +0100 Subject: [PATCH] x86/e820.c: use plan bool Note that e820_mtrr_clip remains s8 although the command line parameter is bool, because it is a tristate variable. Signed-off-by: Wei Liu Reviewed-by: Andrew Cooper --- xen/arch/x86/e820.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/e820.c b/xen/arch/x86/e820.c index bc1544a514..7c572bade2 100644 --- a/xen/arch/x86/e820.c +++ b/xen/arch/x86/e820.c @@ -29,7 +29,7 @@ static s8 __initdata e820_mtrr_clip = -1; boolean_param("e820-mtrr-clip", e820_mtrr_clip); /* opt_e820_verbose: Be verbose about clipping, the original e820, &c */ -static bool_t __initdata e820_verbose; +static bool __initdata e820_verbose; boolean_param("e820-verbose", e820_verbose); struct e820map e820; -- 2.30.2